home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE06 / MRO / MRO.ZIP / TADBMRO.INC < prev    next >
Encoding:
Text File  |  1996-01-03  |  2.4 KB  |  84 lines

  1. {*********************************************************}
  2. {*             TADBMRO.INC 1.11             *}
  3. {*     Copyright (c) Tamarack Associates 1995, 1996.     *}
  4. {*           All rights reserved.          *}
  5. {*********************************************************}
  6.  
  7.  
  8. {* taDBMRO by default will descend from TDBGrid.  To make taDBMRO descend  *}
  9. {* from wwDBGrid and InfoPower is already installed, do the following:       *}
  10. {* 1. Enable the following compiler directive by removing the period       *}
  11. {*    before the dollar sign (change .$DEFINE to $DEFINE)           *}
  12. {* 2. If you have already installed taDBMRO, remove it by selecting       *}
  13. {*    Options|Install Components..., select MROREG, then press Remove       *}
  14. {* 3. Install taDBMRO by selecting Options|Intall Components..., press       *}
  15. {*    Add, find MROREG.PAS, then press Ok                   *}
  16.  
  17. {.$DEFINE UseInfoPower}
  18.  
  19. {* The following compiler directives enable or disable support for various *}
  20. {* controls.  Generally you should build your COMPLIB.DCL with all the       *}
  21. {* options enabled for those components that are installed on your system. *}
  22. {* See 'Controlling EXE File Size' in TADBMRO.DOC for more details.        *}
  23.  
  24. {*  InfoPower from Woll2Woll Software  *}
  25. {.$DEFINE UseTwwDBLookupCombo}
  26. {.$DEFINE UseTwwDBLookupComboDlg}
  27.  
  28. {*  Out & About Productions  *}
  29. {.$DEFINE UseTDBComboBoxPlus}
  30. {.$DEFINE UseTDBLookupComboPlus}
  31.  
  32. {*  Orpheus from TurboPower Software  *}
  33. {.$DEFINE UseTOvcDBSimpleField}
  34. {.$DEFINE UseTOvcDBPictureField}
  35. {.$DEFINE UseTOvcDBNumericField}
  36.  
  37. {*  Standard controls from Borland -- All should be enabled for MROPROJ1  *}
  38. {$DEFINE UseTDBText}
  39. {$DEFINE UseTDBEdit}
  40. {$DEFINE UseTDBMemo}
  41. {$DEFINE UseTDBImage}
  42. {$DEFINE UseTDBListBox}
  43. {$DEFINE UseTDBComboBox}
  44. {$DEFINE UseTDBCheckBox}
  45. {$DEFINE UseTDBRadioGroup}
  46. {$DEFINE UseTDBLookupList}
  47. {$DEFINE UseTDBLookupCombo}
  48.  
  49. {$DEFINE UseTBevel}
  50. {$DEFINE UseTGroupBox}
  51. {$DEFINE UseTLabel}
  52.  
  53. {* !!Don't change anything below this line!! *}
  54.  
  55. {$IFDEF UseTDBLookupCombo}
  56.  {$DEFINE UseDBLookup}
  57. {$ENDIF}
  58.  
  59. {$IFDEF UseTDBLookupList}
  60.  {$DEFINE UseDBLookup}
  61. {$ENDIF}
  62.  
  63. {$IFDEF UseTwwDBLookupCombo}
  64.  {$DEFINE UseInfoPower}
  65. {$ENDIF}
  66.  
  67. {$IFDEF UseTwwDBLookupComboDlg}
  68.  {$DEFINE UseInfoPower}
  69.  {$DEFINE UseTwwDBLookupCombo}
  70. {$ENDIF}
  71.  
  72. {$IFDEF UseTOvcDBSimpleField}
  73.  {$DEFINE UseOrpheus}
  74. {$ENDIF}
  75.  
  76. {$IFDEF UseTOvcDBPictureField}
  77.  {$DEFINE UseOrpheus}
  78. {$ENDIF}
  79.  
  80. {$IFDEF UseTOvcDBNumericField}
  81.  {$DEFINE UseOrpheus}
  82. {$ENDIF}
  83.  
  84.